home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / phpMyAdmin / libraries / engines / binlog.lib.php < prev    next >
Encoding:
PHP Script  |  2005-12-06  |  409 b   |  20 lines

  1. <?php
  2. /* $Id: binlog.lib.php,v 1.1 2005/12/07 10:55:34 cybot_tm Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. class PMA_StorageEngine_binlog extends PMA_StorageEngine
  6. {
  7.     /**
  8.      * returns string with filename for the MySQL helppage
  9.      * about this storage engne
  10.      *
  11.      * @return  string  mysql helppage filename
  12.      */
  13.     function getMysqlHelpPage()
  14.     {
  15.         return 'binary-log';
  16.     }
  17. }
  18.  
  19. ?>
  20.